From ea121d62ab22604f2adc008d6a8740fa3d186b11 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Sat, 8 Apr 2006 12:09:25 +0100 Subject: [PATCH] Clean up IO-APIC update tracing and demote to DPRINTK(). Signed-off-by: Keir Fraser --- xen/arch/x86/io_apic.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/io_apic.c b/xen/arch/x86/io_apic.c index 97aae7a77d..715b7d294d 100644 --- a/xen/arch/x86/io_apic.c +++ b/xen/arch/x86/io_apic.c @@ -1897,12 +1897,11 @@ int ioapic_guest_read(unsigned long physbase, unsigned int reg, u32 *pval) } #define WARN_BOGUS_WRITE(f, a...) \ - printk("%s: apic=%d,pin=%d,oirq=%d,nirq=%d\n" \ - "%s: oent=%08x:%08x,nent=%08x:%08x\n" \ - "%s: " f, __FUNCTION__, apic, pin, old_irq, new_irq, \ - __FUNCTION__, *(u32 *)&old_rte, *((u32 *)&old_rte+1), \ - *(u32 *)&new_rte, *((u32 *)&new_rte+1), \ - __FUNCTION__ , ##a ) + DPRINTK("\n%s: apic=%d, pin=%d, old_irq=%d, new_irq=%d\n" \ + "%s: old_entry=%08x, new_entry=%08x\n" \ + "%s: " f, __FUNCTION__, apic, pin, old_irq, new_irq, \ + __FUNCTION__, *(u32 *)&old_rte, *(u32 *)&new_rte, \ + __FUNCTION__ , ##a ) int ioapic_guest_write(unsigned long physbase, unsigned int reg, u32 val) { -- 2.30.2